home *** CD-ROM | disk | FTP | other *** search
/ Nikkei Mac 20 / NIKKEI-MAC-CD-VOL-20-1998-12.ISO.7z / NIKKEI-MAC-CD-VOL-20-1998-12.ISO / デモソフトライブラリー / 日本テレコムODNスターターキット / OT⁄PPP 1.0 Install / CCL Disk / Modem CCLs / TDK DN1280 (38.4K) / TDK DN1280 (38.4K) next >
Text File  |  1997-05-29  |  3KB  |  148 lines

  1. !***************************************************************
  2. !   Linkboy DUO128 CCL (V.110 38.4Kbps) ver1.00
  3. !                    Copyright 1996 株式会社ビー・ユー・ジー
  4. !***************************************************************
  5. @ORIGINATE
  6. @ANSWER
  7. !
  8. !
  9. !===============================================================
  10. !    Reset Serial
  11. !===============================================================
  12. serreset 19200, 0, 8, 1
  13. setspeed 38400
  14. hsreset 0 1 0 0 0 0
  15. !
  16. !
  17. !===============================================================
  18. !    Init TA
  19. !===============================================================
  20. @LABEL 10
  21. matchclr
  22. matchstr 1 12 "OK"
  23. settries 0
  24. @LABEL 11
  25. write "AT¥13"
  26. matchread 30
  27. inctries
  28. iftries 3 99
  29. jump 11
  30. !
  31. @LABEL 12
  32. matchclr
  33. matchstr 1 13 "OK"
  34. write "AT&F E0 X2 &Q7 ¥¥q3 $S8 ¥13"
  35. matchread 30
  36. jump 99
  37. !
  38. @LABEL 13
  39. ifORIGINATE 30
  40. !
  41. !
  42. !===============================================================
  43. !    Answer
  44. !===============================================================
  45. @LABEL 20
  46. matchclr
  47. matchstr  1 61 "CONNECT 128000"
  48. matchstr  2 62 "CONNECT 64000"
  49. matchstr  3 63 "CONNECT 56000"
  50. matchstr  4 64 "CONNECT 38400"
  51. matchstr  5 65 "CONNECT 19200"
  52. matchstr  6 66 "CONNECT 9600"
  53. !
  54. @LABEL 21
  55. matchread 600
  56. jump 21
  57. !
  58. !
  59. !===============================================================
  60. !    Originate
  61. !===============================================================
  62. @LABEL 30
  63. matchclr
  64. matchstr  1 61 "CONNECT 128000"
  65. matchstr  2 62 "CONNECT 64000"
  66. matchstr  3 63 "CONNECT 56000"
  67. matchstr  4 64 "CONNECT 38400"
  68. matchstr  5 65 "CONNECT 19200"
  69. matchstr  6 66 "CONNECT 9600"
  70. matchstr 11 90 "NO CARRIER"
  71. matchstr 12 90 "ERROR"
  72. matchstr 13 91 "NO ANSWER"
  73. matchstr 14 92 "BUSY"
  74. matchstr 15 92 "DELAYED"
  75. !
  76. note "^1に発信しています。..." 3
  77. write "ATD^1¥13"
  78. matchread 600
  79. jump 99
  80. !
  81. !
  82. !===============================================================
  83. !    Connect
  84. !===============================================================
  85. @LABEL 60
  86. !
  87. @LABEL 61
  88. note "回線速度128000 bpsで接続しています..." 2
  89. communicatingat 128000
  90. userhook 3
  91. jump 69
  92. !
  93. @LABEL 62
  94. note "回線速度64000 bpsで接続しています..." 2
  95. communicatingat 64000
  96. userhook 3
  97. jump 69
  98. !
  99. @LABEL 63
  100. note "回線速度56000 bpsで接続しています..." 2
  101. communicatingat 56000
  102. userhook 3
  103. jump 69
  104. !
  105. @LABEL 64
  106. note "回線速度38400 bpsで接続しています..." 2
  107. communicatingat 38400
  108. jump 69
  109. !
  110. @LABEL 65
  111. note "回線速度19200 bpsで接続しています..." 2
  112. communicatingat 19200
  113. jump 69
  114. !
  115. @LABEL 66
  116. note "回線速度9600 bpsで接続しています..." 2
  117. communicatingat 9600
  118. jump 69
  119. !
  120. @LABEL 69
  121. exit 0
  122. !
  123. !
  124. !===============================================================
  125. !    Hang Up
  126. !===============================================================
  127. @HANGUP
  128. DTRClear
  129. pause 10
  130. DTRSet
  131. exit 0
  132. !
  133. !
  134. !===============================================================
  135. !    Error
  136. !===============================================================
  137. @LABEL 90
  138. exit -6021
  139. !
  140. @LABEL 91
  141. exit -6023
  142. !
  143. @LABEL 92
  144. exit -6022
  145. !
  146. @LABEL 99
  147. exit -6019
  148.